home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / bgfax160.zip / EZYCOM.TXT < prev    next >
Text File  |  1995-08-12  |  5KB  |  213 lines

  1. --------------------------------------------------------------------------
  2. Setup hints for using BGFAX Front-end mode with EZYCOM BBS        02-23-94
  3. Frank Conway                                              FAX 303-770-5245
  4. FidoNet 1:104/670                                         BBS 303-770-5815
  5. --------------------------------------------------------------------------
  6.  
  7. This document was prepared by Frank Conway with assistance from the author
  8. B.J. Guillot.
  9.  
  10. Contained within the files you recieved with your copy of BGFAX will be 2
  11. files specifically designed to work with EZYCOM BBS v1.02. This should work
  12. with any upgrade versions of Ezycom as long as they do not change the basic
  13. premise of the way Ezycom looks runs in rear-end mode (Or behind a front-end
  14. application such as BGFAX).
  15.  
  16.  
  17. The files mentioned are:
  18.  
  19. EZYFBBS.BAT - Batch file that calls BGFAX Front-end mode and loads certian
  20.               TSR's needed for Ezycom
  21.  
  22. EZEXEBBS.BAT- The batch file DOBBS.BAT calls to run the BBS upon recipt of 
  23.               a data call. (RENAME TO (EXEBBS.BAT))
  24.  
  25.  
  26. These files are pre-set for use just a minor look thru to check and make sure
  27. your paths and other minor things are correct. For some reason the REAR-END
  28. operation of BGFAX would not work with my High Speed modems. Well the only 
  29. way I could think of was to do it in front end mode. It worked... 
  30.  
  31. This is a valid way to use your phone line for both FAX and DATA as long as  
  32. your not using any other Front-end Mailer such as FRONT DOOR. If you are  
  33. then please refer to the Help files for the particular mailer you are using.
  34. I am running multi-lines and utilize one for mail (FRONTDOOR) and the second
  35. for DATA/FAX calls. This has proved to work out GREAT.
  36.  
  37. =============================================================================
  38.  
  39. FBBS.BAT
  40. ~~~~~~~~
  41. @ECHO OFF
  42. REM ** an example batch file for frontend mode operation for EZYCOM BBS ****
  43.  
  44. SET EZY=C:\EZY
  45. SET TASK=2
  46. SET BGFAX=C:\EZY\FAX
  47.  
  48. REM ** Replace with X00 command line if not using BNU *************
  49. C:\BNU /T:2048 /R:2048 /P:2 /F
  50.  
  51. REM ****** Autoboot can be removed if not used ********************
  52. C:\AUTOBOOT /DVT N2 /CLD
  53.  
  54. REM ****** Remove if using DOS Ansi.sys instead of DVANSI *********
  55. C:\DV\DVANSI
  56.  
  57. :Start
  58. C:
  59. CD\EZY\FAX
  60. BGFAX /HOST
  61. if errorlevel 55 maint1.bat
  62. if errorlevel 50 maint2.bat
  63. if errorlevel 4 goto faxrcvd
  64. if errorlevel 3 goto datacall
  65. if errorlevel 2 goto datacall
  66. if errorlevel 1 goto Start
  67. goto end
  68.  
  69. :faxrcvd
  70. REM *** Can put a PRINTFAX batch file here to print upon recieve ***
  71. goto Start
  72.  
  73. :datacall
  74.  CALL C:\EZY\FAX\DOBBS.BAT
  75. goto Start
  76.  
  77. :end
  78. exit
  79.  
  80. EXEBBS.BAT
  81. ~~~~~~~~~~
  82. REM *** batch file for running EZYCOM BBS within BGFAX's front end mode ***
  83. REM *** Any questions can be refered to Frank Conway @ Evil Ed's BBS    ***
  84. REM *** 303-770-5815 or Fido Net # 1:104/670, Special thanks goes to the***
  85. REM *** Author B.J. Guillot for answering all my stupid questions...    ***   
  86.  
  87. if %1 == LOCAL goto Local
  88.  
  89. cd\ezy
  90. ezy -b%1 -e20 -N2
  91. goto raerr
  92.  
  93. :local
  94. cd\ezy
  95. ezy -l -e20 -N2 
  96. goto raerr
  97.  
  98. :afteruser
  99. goto Exit
  100.  
  101. :raerr
  102. if errorlevel 30 goto event
  103. if errorlevel 20 goto Exit
  104. if errorlevel 7 goto scanecho
  105. if errorlevel 6 goto scanecho
  106. if errorlevel 5 goto scanecho
  107. if errorlevel 0 goto Exit
  108. goto afterra
  109.  
  110. REM *************************** Games Doors **************************
  111.  
  112. REM *************************** Utility *********************************
  113. :unpack
  114. CD\EZY
  115. EZYMAIL -TOSS -VERBOSE -N2
  116. EZYNET -IMPORT -ECHOAREA -N2
  117. EZYLINK
  118. goto Exit
  119.  
  120. :Scanecho
  121. REM cd\ezy
  122. REM ezymail -scan
  123. REM ezynet -export
  124. goto Exit
  125.  
  126. :setuperr
  127. echo setuperr
  128. goto Exit
  129.  
  130. :modeminit
  131. echo modem init fail
  132. goto Exit
  133.  
  134. :fossil
  135. echo fossil fail
  136. goto Exit
  137.  
  138. :modemresp
  139. echo no response
  140. goto Exit
  141.  
  142. :fulldisk
  143. echo disk full
  144. goto Exit
  145.  
  146. :fdload
  147. echo FD no load
  148. goto Exit
  149.  
  150. :nofoss
  151. echo no fossil
  152. goto Exit
  153.  
  154. :internal
  155. echo internal fd error
  156. goto Exit
  157.  
  158. :external
  159. echo external error
  160. goto Exit
  161.         
  162. REM ****************************** Util Doors ************************
  163.  
  164.  
  165. REM ******************************** EVENTS ************************
  166.  
  167. :Nightly
  168. goto Exit
  169.  
  170. :Log
  171. cd\ezy
  172. delete ezy1.log
  173. cd\fd\log
  174. delete c:\fd\log\fd.log
  175. goto Exit
  176.  
  177. :Weekly
  178. goto Exit
  179.  
  180. :Monthly
  181. goto Exit
  182.  
  183. REM **************************** Restart *****************************
  184.  
  185. :restart
  186. c:
  187. cd\ezy
  188. ezy -r -g -e0 -N2
  189. goto afterdoor
  190.  
  191. REM **************************** Afterdoor ****************************
  192.  
  193.  
  194. :afterdoor
  195. if errorlevel 30 goto event
  196. if errorlevel 20 goto Exit
  197. if errorlevel 7 goto scanecho
  198. if errorlevel 6 goto scanecho
  199. if errorlevel 5 goto scanecho
  200. if errorlevel 0 goto Exit
  201. if errorlevel 0 goto Exit
  202. goto afterra
  203.  
  204. :Exit
  205. return
  206.  
  207. =============================================================================
  208. All my Best
  209. Frank Conway
  210. a.k.a. Evil Ed
  211. 1:104/670
  212.  
  213.